/* General styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Header */
header {
    background-color: #333;
    color: #fff;
    padding: 10px;
    text-align: center;
}

/* Header title */
header h1 {
    font-size: 30px;
    text-transform: uppercase;
    text-align: left;
    text-decoration: none;
    color: #fff;
}

/* Header navigation */
header ul {
    list-style-type: none;
    padding: 0;
}

header ul li {
    display: inline;
    margin-right: 20px;
}

header ul li a {
    text-decoration: none;
    color: #fff;
    text-align: center;
}

/* Style for active tabs */
header ul li.active a {
    font-weight: bold;
}

/* Pages */
.page {
    background-color: #fff;
    padding: 20px;
    margin: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    display: none;
}

.page h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.page p {
    font-size: 16px;
}

.page li {
    margin-bottom: 10px; /* Adjust the value based on preferences */
}

/* Sections */
aside {
    width: auto;
    height: auto;
    margin-top: 0px;
    border-radius: 10px;
    color: black;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.sections-container {
    display: flex;
    justify-content: space-around;
}

.education, .skills, .experiences {
    height: auto;
    width: auto;
}

/* Footer */
footer {
    background-color: black;
    height: 100px;
    width: auto;
    border-radius: 10px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-primary {
    color: white;
}

.btn-primary:hover {
    background-color: rgb(255, 255, 255);
    color: #333;
    border-radius: 5px;
    transition: background-color 0.3s;
}

footer {
    text-align: center;
}

footer img {
    width: 150px;
    height: 100px;
    display: block;
}

footer ul li a {
    color: white;
}

.image-container {
    float: right;
}

/* Other styles */
.active {
    background-color: #ccc;
}

body div {
    color: black;
}

header {
    height: 40px;
    background-color: black;
    color: #FFF;
}

header li:hover {
    background-color: rgb(83, 72, 72);
    transition: background-color 0.3s ease;
    border-radius: 20px;
}

header h1 {
    font-size: 30px;
    line-height: 40px;
    text-transform: uppercase;
    margin: 0;
    margin-left: 10px;
    margin-right: 10px;
    display: inline-block;
    vertical-align: top;
}

header nav {
    vertical-align: top;
    display: inline-block;
    height: 100%;
}

header nav ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    height: 100%;
}

header nav ul li {
    display: inline-block;
    margin: 0;
    height: 100%;
    width: 150px;
    text-align: center;
}

header nav ul li a {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 40px;
    color: #FFF;
    text-decoration: none;
}

.skills .software-images {
    text-align: center;
}

.skills .software-image {
    width: 100px;
    height: auto;
    margin: 5px;
    display: inline-block;
}

.download-link-container {
    background-color: #ccc;
    padding: 10px;
    border-radius: 5px;
    float: right;
}

.download-link {
    color: #000;
    text-decoration: none;
    font-weight: bold;
}

/* Styles for reduced navigation tab */
header ul li {
    display: inline-block;
    margin-right: 10px; /* Reduce spacing between menu items */
}

/* Styles for achievements list on page 2 */
.achievements-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    list-style-type: none;
    flex-wrap: wrap; /* Allow list items to wrap to the next line */
}

.achievement-item {
    text-align: center;
    width: 30%; /* Set width for each image-text pair */
    margin: 5px; /* Space between image-text pairs */
}

.achievement-item img {
    max-width: 100%; /* Images adapt to the width of the pairs */
    margin: 0;
}

.achievement-item p {
    margin-top: 10px; /* Space between image and text */
}

.achievement-item-photoshop {
    text-align: center;
    width: 30%; /* Same width as the Blender section */
    margin: 5px; /* Space between image-text pairs */
}

.achievement-item-photoshop img {
    max-width: 100%; /* Images adapt to the width of the pairs */
    margin: 0;
}

.achievement-item-photoshop p {
    margin-top: 10px; /* Space between image and text */
}

.left-column {
    display: flex;
    text-align: justify;
    flex-direction: column; /* Align the column to the left */
    margin: auto;
}

.left-column img {
    display: flex;
    align-items: end;
    float: right;
    width: 150px;
    height: 100px;
}

.comment-form {
    background-color: white;
    padding: 20px;
    max-width: 400px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    float: right;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 8px;
}

input,
textarea {
    padding: 8px;
    margin-bottom: 16px;
    box-sizing: border-box;
}

button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}
